METADATA 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Metadata-Version: 2.1
  2. Name: importlib-metadata
  3. Version: 4.11.3
  4. Summary: Read metadata from Python packages
  5. Home-page: https://github.com/python/importlib_metadata
  6. Author: Jason R. Coombs
  7. Author-email: jaraco@jaraco.com
  8. License: UNKNOWN
  9. Platform: UNKNOWN
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Intended Audience :: Developers
  12. Classifier: License :: OSI Approved :: Apache Software License
  13. Classifier: Programming Language :: Python :: 3
  14. Classifier: Programming Language :: Python :: 3 :: Only
  15. Requires-Python: >=3.7
  16. License-File: LICENSE
  17. Requires-Dist: zipp (>=0.5)
  18. Requires-Dist: typing-extensions (>=3.6.4) ; python_version < "3.8"
  19. Provides-Extra: docs
  20. Requires-Dist: sphinx ; extra == 'docs'
  21. Requires-Dist: jaraco.packaging (>=9) ; extra == 'docs'
  22. Requires-Dist: rst.linker (>=1.9) ; extra == 'docs'
  23. Provides-Extra: perf
  24. Requires-Dist: ipython ; extra == 'perf'
  25. Provides-Extra: testing
  26. Requires-Dist: pytest (>=6) ; extra == 'testing'
  27. Requires-Dist: pytest-checkdocs (>=2.4) ; extra == 'testing'
  28. Requires-Dist: pytest-flake8 ; extra == 'testing'
  29. Requires-Dist: pytest-cov ; extra == 'testing'
  30. Requires-Dist: pytest-enabler (>=1.0.1) ; extra == 'testing'
  31. Requires-Dist: packaging ; extra == 'testing'
  32. Requires-Dist: pyfakefs ; extra == 'testing'
  33. Requires-Dist: flufl.flake8 ; extra == 'testing'
  34. Requires-Dist: pytest-perf (>=0.9.2) ; extra == 'testing'
  35. Requires-Dist: pytest-black (>=0.3.7) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  36. Requires-Dist: pytest-mypy (>=0.9.1) ; (platform_python_implementation != "PyPy") and extra == 'testing'
  37. Requires-Dist: importlib-resources (>=1.3) ; (python_version < "3.9") and extra == 'testing'
  38. .. image:: https://img.shields.io/pypi/v/importlib_metadata.svg
  39. :target: `PyPI link`_
  40. .. image:: https://img.shields.io/pypi/pyversions/importlib_metadata.svg
  41. :target: `PyPI link`_
  42. .. _PyPI link: https://pypi.org/project/importlib_metadata
  43. .. image:: https://github.com/python/importlib_metadata/workflows/tests/badge.svg
  44. :target: https://github.com/python/importlib_metadata/actions?query=workflow%3A%22tests%22
  45. :alt: tests
  46. .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  47. :target: https://github.com/psf/black
  48. :alt: Code style: Black
  49. .. image:: https://readthedocs.org/projects/importlib-metadata/badge/?version=latest
  50. :target: https://importlib-metadata.readthedocs.io/en/latest/?badge=latest
  51. .. image:: https://img.shields.io/badge/skeleton-2022-informational
  52. :target: https://blog.jaraco.com/skeleton
  53. Library to access the metadata for a Python package.
  54. This package supplies third-party access to the functionality of
  55. `importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>`_
  56. including improvements added to subsequent Python versions.
  57. Compatibility
  58. =============
  59. New features are introduced in this third-party library and later merged
  60. into CPython. The following table indicates which versions of this library
  61. were contributed to different versions in the standard library:
  62. .. list-table::
  63. :header-rows: 1
  64. * - importlib_metadata
  65. - stdlib
  66. * - 4.8
  67. - 3.11
  68. * - 4.4
  69. - 3.10
  70. * - 1.4
  71. - 3.8
  72. Usage
  73. =====
  74. See the `online documentation <https://importlib_metadata.readthedocs.io/>`_
  75. for usage details.
  76. `Finder authors
  77. <https://docs.python.org/3/reference/import.html#finders-and-loaders>`_ can
  78. also add support for custom package installers. See the above documentation
  79. for details.
  80. Caveats
  81. =======
  82. This project primarily supports third-party packages installed by PyPA
  83. tools (or other conforming packages). It does not support:
  84. - Packages in the stdlib.
  85. - Packages installed without metadata.
  86. Project details
  87. ===============
  88. * Project home: https://github.com/python/importlib_metadata
  89. * Report bugs at: https://github.com/python/importlib_metadata/issues
  90. * Code hosting: https://github.com/python/importlib_metadata
  91. * Documentation: https://importlib_metadata.readthedocs.io/